home *** CD-ROM | disk | FTP | other *** search
/ Gamers Arsenal 1 / Gamers Arsenal (Arsenal Computer).iso / gifreed / gifv.slm < prev    next >
Text File  |  1993-10-11  |  888b  |  30 lines

  1. ;
  2. ; GIFV.SLM
  3. ; This is a COOL script file that allows for COMPLETE control over
  4. ; your slide show presentation (Business like!). It allows you to go
  5. ; forwards and backwards through your GIF files in your current
  6. ; directory. This script shows how to use the MOUSE related commands:
  7. ;                     Mouse-Control-On
  8. ;                     Mouse-Control-Off
  9. ;                     IfButton-L
  10. ;                     IfButton-R
  11. ;                     IfButton-C
  12. ; NOTE: If you try to go too far forwards or backwards, the script
  13. ;       will exit. See GIFV.SLN to see how to fix this quirk!
  14. ;
  15.         mouse-control-on
  16.         change-path *.gif
  17.         loadnext :exit
  18. :loop
  19.         ifbutton-l :doprev
  20.         Ifbutton-r :donext
  21.         Ifbutton-c :exit
  22. :doprev
  23.         loadprev :exit
  24.         goto :loop
  25. :donext
  26.         loadnext :exit
  27.         goto :loop
  28. :exit
  29.  
  30.